<!DOCTYPE html>
<html class="client-nojs vector-feature-night-mode-disabled vector-feature-language-in-header-enabled vector-feature-language-in-main-page-header-disabled vector-feature-page-tools-pinned-disabled vector-feature-toc-pinned-clientpref-1 vector-feature-main-menu-pinned-disabled vector-feature-limited-width-clientpref-1 vector-feature-limited-width-content-enabled vector-feature-custom-font-size-clientpref-1 vector-feature-appearance-pinned-clientpref-1 vector-sticky-header-enabled" lang="en" dir="ltr"><head>
<meta charset="UTF-8">
<title>Embedded SQL</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="https://en.wikipedia.org/wiki/Embedded_SQL"> <link href="./mw/ext.cite.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.icons.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.search.codex.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/skins.vector.styles.css" rel="stylesheet" type="text/css">
<link href="./mw/user.styles.css" rel="stylesheet" type="text/css">
<meta name="ResourceLoaderDynamicStyles" content="">
<link rel="stylesheet" type="text/css" href="./mw/site.styles.css">
<link rel="stylesheet" type="text/css" href="./mw/noscript.css">
<link rel="stylesheet" type="text/css" href="./footer.css">
<link rel="stylesheet" type="text/css" href="./vector-2022.css">
</head>
<body class="skin--responsive skin-vector skin-vector-search-vue mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject page-Embedded_SQL rootpage-Embedded_SQL skin-vector-2022 action-view">
<div class="mw-page-container">
<div class="mw-page-container-inner">
<div class="mw-content-container">
<main id="content" class="mw-body">
<header class="mw-body-header vector-page-titlebar">
<h1 id="firstHeading" class="firstHeading mw-first-heading">
<span id="openzim-page-title" class="mw-page-title-main"><span class="mw-page-title-main">Embedded SQL</span></span>
</h1>
</header>
<a id="top"></a>
<div id="bodyContent" class="vector-body ve-init-mw-desktopArticleTarget-targetContainer" aria-labelledby="firstHeading" data-mw-ve-target-container="">
<div id="mw-content-text" class="mw-body-content mw-content-ltr" lang="en" dir="ltr"><div class="mw-content-ltr mw-parser-output" lang="en" dir="ltr">
<p><b>Embedded SQL</b> is a method of combining the <a href="Computing" title="Computing">computing</a> power of a <a href="Programming_language" title="Programming language">programming language</a> and the <a href="Database" title="Database">database</a> <a href="Data_Manipulation_Language" class="mw-redirect" title="Data Manipulation Language">manipulation</a> capabilities of <a href="SQL" title="SQL">SQL</a>. Embedded SQL <a href="Statement_(programming)" class="mw-redirect" title="Statement (programming)">statements</a> are SQL statements written inline with the program <a href="Source_code" title="Source code">source code</a>, of the host language. The embedded SQL statements are <a href="Parsing" title="Parsing">parsed</a> by an embedded SQL <a href="Preprocessor" title="Preprocessor">preprocessor</a> and replaced by host-language <a href="Call_site" title="Call site">calls</a> to a code <a href="Library_(computing)" title="Library (computing)">library</a>. The output from the preprocessor is then compiled by the host <a href="Compiler" title="Compiler">compiler</a>. This allows programmers to embed SQL statements in programs written in any number of languages such as C/C++, <a href="COBOL" title="COBOL">COBOL</a> and <a href="Fortran" title="Fortran">Fortran</a>. This differs from SQL-derived programming languages that don't go through discrete preprocessors, such as <a href="PL/SQL" title="PL/SQL">PL/SQL</a> and <a href="Transact-SQL" title="Transact-SQL">T-SQL</a>.
</p><p>The SQL standards committee defined the embedded SQL standard in two steps: a formalism called <a href="Module_SQL" title="Module SQL">Module Language</a> was defined, then the embedded SQL standard was derived from Module Language.<sup id="cite_ref-modulelang_1-0" class="reference"><a href="#cite_note-modulelang-1"><span class="cite-bracket">[</span>1<span class="cite-bracket">]</span></a></sup> The SQL standard defines embedding of SQL as <i>embedded SQL</i> and the language in which SQL queries are embedded is referred to as the <i>host language</i>. A popular host language is C. Host language C and embedded SQL, for example, is called <a href="Pro*C" title="Pro*C">Pro*C</a> in <a href="Oracle_Database" title="Oracle Database">Oracle</a> and <a href="Sybase" title="Sybase">Sybase</a> database management systems, ESQL/C in <a href="Informix" title="Informix">Informix</a>, and <a href="ECPG" title="ECPG">ECPG</a> in the <a href="PostgreSQL" title="PostgreSQL">PostgreSQL</a> database management system.
SQL may also be embedded in languages like PHP etc.
</p><p>The SQL standard <a href="SQL%3A2023" title="SQL:2023">SQL:2023</a> is available through purchase and contains chapter <b>21 Embedded SQL</b> and its syntax rules.<sup id="cite_ref-2" class="reference"><a href="#cite_note-2"><span class="cite-bracket">[</span>2<span class="cite-bracket">]</span></a></sup>
</p>
<meta property="mw:PageProp/toc">
<div class="mw-heading mw-heading2"><h2 id="Database_systems_that_support_embedded_SQL">Database systems that support embedded SQL</h2></div>
<div class="mw-heading mw-heading3"><h3 id="Altibase">Altibase</h3></div>
<dl><dt>C/C++</dt>
<dd>APRE is an embedded SQL precompiler provided by <a href="Altibase" title="Altibase">Altibase</a> Corp. for its DBMS server.</dd></dl>
<div class="mw-heading mw-heading3"><h3 id="IBM_Db2">IBM Db2</h3></div>
<p><a href="IBM_Db2" title="IBM Db2">IBM Db2</a> for Linux, UNIX and Windows supports embedded SQL for C, C++, Java, COBOL, FORTRAN and REXX although support for FORTRAN and REXX has been deprecated.<sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span class="cite-bracket">[</span>3<span class="cite-bracket">]</span></a></sup>
</p>
<div class="mw-heading mw-heading3"><h3 id="IBM_Informix">IBM Informix</h3></div>
<p><a href="IBM_Informix" class="mw-redirect" title="IBM Informix">IBM Informix</a> version 14.10 for Linux, Unix, and Windows supports embedded SQL for C. <sup id="cite_ref-4" class="reference"><a href="#cite_note-4"><span class="cite-bracket">[</span>4<span class="cite-bracket">]</span></a></sup>}
</p>
<div class="mw-heading mw-heading3"><h3 id="Microsoft_SQL_Server">Microsoft SQL Server</h3></div>
<dl><dt>C/C++</dt>
<dd>Embedded SQL for C has been deprecated as of <a href="Microsoft_SQL_Server" title="Microsoft SQL Server">Microsoft SQL Server</a> 2008 although earlier versions of the product support it.<sup id="cite_ref-5" class="reference"><a href="#cite_note-5"><span class="cite-bracket">[</span>5<span class="cite-bracket">]</span></a></sup></dd></dl>
<div class="mw-heading mw-heading3"><h3 id="Mimer_SQL">Mimer SQL</h3></div>
<p><a href="Mimer_SQL" title="Mimer SQL">Mimer SQL</a> for Linux, <a href="MacOS" title="MacOS">macOS</a>, <a href="OpenVMS" title="OpenVMS">OpenVMS</a> and Windows support embedded SQL.<sup id="cite_ref-6" class="reference"><a href="#cite_note-6"><span class="cite-bracket">[</span>6<span class="cite-bracket">]</span></a></sup>
</p>
<dl><dt>C/C++</dt>
<dd>Embedded SQL for C/C++ is supported on Linux, macOS, OpenVMS and Windows.</dd>
<dt>COBOL</dt>
<dd>Embedded SQL for COBOL is supported on OpenVMS.</dd>
<dt>Fortran</dt>
<dd>Embedded SQL for Fortran is supported on OpenVMS.</dd></dl>
<div class="mw-heading mw-heading3"><h3 id="Oracle_Database">Oracle Database</h3></div>
<dl><dt><a href="Ada_(programming_language)" title="Ada (programming language)">Ada</a></dt>
<dd>Pro*Ada was officially desupported by <a href="Oracle_Corporation" title="Oracle Corporation">Oracle</a> in version 7.3. Starting with Oracle8, Pro*Ada was replaced by SQL*Module but appears to have not been updated since.<sup id="cite_ref-7" class="reference"><a href="#cite_note-7"><span class="cite-bracket">[</span>7<span class="cite-bracket">]</span></a></sup> SQL*Module is a module language that offers a different programming method from embedded SQL. SQL*Module supports the Ada83 language standard for Ada.</dd></dl>
<dl><dt>C/C++</dt>
<dd><a href="Pro*C" title="Pro*C">Pro*C</a> became Pro*C/C++ with Oracle8. Pro*C/C++ is currently supported as of Oracle Database 11<i>g</i>.</dd></dl>
<dl><dt>COBOL</dt>
<dd>Pro*COBOL is currently supported as of Oracle Database 11<i>g</i>.</dd></dl>
<dl><dt>Fortran</dt>
<dd>Pro*FORTRAN is no longer updated as of Oracle8 but Oracle will continue to issue patch releases as bugs are reported and corrected.<sup id="cite_ref-langalts_8-0" class="reference"><a href="#cite_note-langalts-8"><span class="cite-bracket">[</span>8<span class="cite-bracket">]</span></a></sup></dd></dl>
<dl><dt><a href="Pascal_(programming_language)" title="Pascal (programming language)">Pascal</a></dt>
<dd>Pro*Pascal was not released with Oracle8.<sup id="cite_ref-langalts_8-1" class="reference"><a href="#cite_note-langalts-8"><span class="cite-bracket">[</span>8<span class="cite-bracket">]</span></a></sup></dd></dl>
<dl><dt><a href="PL/I" title="PL/I">PL/I</a></dt>
<dd>Pro*PL/I was not released with Oracle8. The <i>Pro*PL/I Supplement to the Oracle Precompilers Guide</i>, however, continued to make appearances in the Oracle Documentation Library until release 11<i>g</i>. As of release 12c, the Pro*PL/I has been removed from the Oracle Documentation Library.<sup id="cite_ref-langalts_8-2" class="reference"><a href="#cite_note-langalts-8"><span class="cite-bracket">[</span>8<span class="cite-bracket">]</span></a></sup></dd></dl>
<div class="mw-heading mw-heading3"><h3 id="PostgreSQL">PostgreSQL</h3></div>
<dl><dt>C/C++</dt>
<dd><a href="ECPG" title="ECPG">ECPG</a> is part of <a href="PostgreSQL" title="PostgreSQL">PostgreSQL</a> since version 6.3.</dd>
<dt>COBOL</dt>
<dd>Cobol-IT is now distributing a COBOL precompiler for PostgreSQL</dd>
<dd>Micro Focus provides support via their OpenESQL preprocessor</dd></dl>
<div class="mw-heading mw-heading3"><h3 id="SAP_Sybase">SAP Sybase</h3></div>
<p>SAP Sybase ASE 15.7 supports embedded SQL for C and COBOL as part of the Software Developer Kit <a href="Sybase" title="Sybase">Sybase</a>.<sup id="cite_ref-9" class="reference"><a href="#cite_note-9"><span class="cite-bracket">[</span>9<span class="cite-bracket">]</span></a></sup>
</p><p>SAP Sybase SQL Anywhere supports embedded SQL for C and C++ as part of the SQL Anywhere database management system <a href="SQL_Anywhere" title="SQL Anywhere">SQL Anywhere</a>.<sup id="cite_ref-10" class="reference"><a href="#cite_note-10"><span class="cite-bracket">[</span>10<span class="cite-bracket">]</span></a></sup>
</p><p>SAP Sybase IQ supports embedded SQL for C and C++ as part of the Sybase IQ database management system <a href="Sybase_IQ" class="mw-redirect" title="Sybase IQ">Sybase IQ</a>.<sup id="cite_ref-11" class="reference"><a href="#cite_note-11"><span class="cite-bracket">[</span>11<span class="cite-bracket">]</span></a></sup>
</p>
<div class="mw-heading mw-heading2"><h2 id="Embedded_SQL_through_domain-specific_languages">Embedded SQL through domain-specific languages</h2></div>
<ul><li><a href="Language_Integrated_Query" title="Language Integrated Query">LINQ-to-SQL</a> embeds a SQL-like language into <a href="List_of_CLI_languages" title="List of CLI languages">.NET languages</a>.</li>
<li><a href="Java_Persistence_API" class="mw-redirect" title="Java Persistence API">JPA</a> embeds a SQL-like language through <a rel="nofollow" class="external text" href="http://docs.oracle.com/javaee/6/tutorial/doc/gjrij.html">Criteria API</a> into <a href="Java_(programming_language)" title="Java (programming language)">Java</a>.</li>
<li><a href="Java_Object_Oriented_Querying" class="mw-redirect" title="Java Object Oriented Querying">jOOQ</a> embeds a SQL-like language into <a href="Java_(programming_language)" title="Java (programming language)">Java</a>.</li></ul>
<div class="mw-heading mw-heading2"><h2 id="See_also">See also</h2></div>
<ul><li><a href="Language_binding" title="Language binding">Language binding</a></li>
<li><a href="Module_SQL" title="Module SQL">Module SQL</a></li>
<li><a href="PL/SQL" title="PL/SQL">PL/SQL</a></li>
<li><a href="Pro*C/C%2B%2B" class="mw-redirect" title="Pro*C/C++">Pro*C/C++</a></li>
<li><a href="SQL/OLB" title="SQL/OLB">SQL/OLB</a></li>
<li><a href="SQL_PL" title="SQL PL">SQL PL</a></li>
<li><a href="Transact-SQL" title="Transact-SQL">Transact-SQL</a></li></ul>
<div class="mw-heading mw-heading2"><h2 id="References">References</h2></div>
<div class="mw-references-wrap mw-references-columns"><ol class="references">
<li id="cite_note-modulelang-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-modulelang_1-0">^</a></b></span> <span class="reference-text">
<style data-mw-deduplicate="TemplateStyles:r1238218222">
/* start https://en.wikipedia.org/ */
.mw-parser-output cite.citation{font-style:inherit;word-wrap:break-word}.mw-parser-output .citation q{quotes:"\"""\"""'""'"}.mw-parser-output .citation:target{background-color:rgba(0,127,255,0.133)}.mw-parser-output .id-lock-free.id-lock-free a{background:url("./mw/Lock-green.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-limited.id-lock-limited a,.mw-parser-output .id-lock-registration.id-lock-registration a{background:url("./mw/Lock-gray-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .id-lock-subscription.id-lock-subscription a{background:url("./mw/Lock-red-alt-2.svg")right 0.1em center/9px no-repeat}.mw-parser-output .cs1-ws-icon a{background:url("./mw/Wikisource-logo.svg")right 0.1em center/12px no-repeat}body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-free a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-limited a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-registration a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .id-lock-subscription a,body:not(.skin-timeless):not(.skin-minerva) .mw-parser-output .cs1-ws-icon a{background-size:contain;padding:0 1em 0 0}.mw-parser-output .cs1-code{color:inherit;background:inherit;border:none;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;color:var(--color-error,#d33)}.mw-parser-output .cs1-visible-error{color:var(--color-error,#d33)}.mw-parser-output .cs1-maint{display:none;color:#085;margin-left:0.3em}.mw-parser-output .cs1-kern-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right{padding-right:0.2em}.mw-parser-output .citation .mw-selflink{font-weight:inherit}@media screen{.mw-parser-output .cs1-format{font-size:95%}html.skin-theme-clientpref-night .mw-parser-output .cs1-maint{color:#18911f}}@media screen and (prefers-color-scheme:dark){html.skin-theme-clientpref-os .mw-parser-output .cs1-maint{color:#18911f}}
/* end https://en.wikipedia.org/ */
</style><cite class="citation web cs1"><a rel="nofollow" class="external text" href="http://download.oracle.com/docs/cd/B10501_01/appdev.920/a58231/ch1.htm#2889">"The Module Language Concept"</a>. <i>SQL*Module for Ada Programmer's Guide, Release 8.0, Chapter 1. Introduction to SQL*Module</i>. <a href="Oracle_Corporation" title="Oracle Corporation">Oracle Corporation</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2008-07-14</span></span>.</cite></span>
</li>
<li id="cite_note-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-2">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.iso.org/standard/76584.html">"SQL Standard 2023 Chapter 21 Embedded SQL"</a>. <i>ISO/IEC 9075-2:2023 Information technology — Database languages — SQL — Part 2: Foundation (SQL/Foundation)</i>. <a href="ISO" class="mw-redirect" title="ISO">ISO</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2023-08-17</span></span>.</cite></span>
</li>
<li id="cite_note-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-3">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="http://publib.boulder.ibm.com/infocenter/db2luw/v9/index.jsp?topic=/com.ibm.db2.udb.apdv.embed.doc/doc/c0007014.htm">"DB2 Database for Linux, UNIX and Windows"</a>. <i>Developing Embedded SQL Applications</i>. <a href="IBM" title="IBM">IBM</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2009-04-10</span></span>.</cite></span>
</li>
<li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://www.ibm.com/support/knowledgecenter/SSGU8G_14.1.0/com.ibm.esqlc.doc/esqlc.htm">"Informix Dynamic Server"</a>. <i>IBM® Informix® ESQL/C</i>. <a href="IBM" title="IBM">IBM</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2020-03-31</span></span>.</cite></span>
</li>
<li id="cite_note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="http://msdn.microsoft.com/en-us/library/ms143729.aspx">"Deprecated Database Engine Features in SQL Server 2008"</a>. <i>SQL Server 2008 Books Online (March 2009)</i>. <a href="Microsoft" title="Microsoft">Microsoft</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2009-04-10</span></span>.</cite></span>
</li>
<li id="cite_note-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-6">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://docs.mimer.com/MimerSqlManual/latest/Manuals/Embedded_SQL/Embedded_SQL.htm">"Embedded SQL"</a>. <i>Mimer SQL Programmer's Manual latest version, Embedded SQL</i>. <a href="Mimer_SQL" title="Mimer SQL">Mimer SQL</a>.</cite></span>
</li>
<li id="cite_note-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="http://download.oracle.com/docs/cd/B10501_01/server.920/a96530/migcompa.htm#1010868">"Ada Support in Version 8"</a>. <i>Oracle9i Database Migration, Release 2 (9.2), Chapter 5. Compatibility and Interoperability</i>. Oracle Corporation<span class="reference-accessdate">. Retrieved <span class="nowrap">2008-07-14</span></span>.</cite></span>
</li>
<li id="cite_note-langalts-8"><span class="mw-cite-backlink">^ <a href="#cite_ref-langalts_8-0"><sup><i><b>a</b></i></sup></a> <a href="#cite_ref-langalts_8-1"><sup><i><b>b</b></i></sup></a> <a href="#cite_ref-langalts_8-2"><sup><i><b>c</b></i></sup></a></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="http://download.oracle.com/docs/cd/A64702_01/doc/server.805/a58232/ch01.htm#505">"Language Alternatives"</a>. <i>Pro*COBOL Precompiler Programmer's Guide, Release 8.0, Chapter 1. Introduction</i>. Oracle Corporation<span class="reference-accessdate">. Retrieved <span class="nowrap">2008-07-14</span></span>.</cite></span>
</li>
<li id="cite_note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20091023214433/http://www.sybase.com/products/allproductsa-z/softwaredeveloperkit/embeddedsql">"EmbeddedSQL"</a>. <i>SAP Sybase Products</i>. SAP Sybase. Archived from <a rel="nofollow" class="external text" href="http://www.sybase.com/products/allproductsa-z/softwaredeveloperkit/embeddedsql">the original</a> on 2009-10-23<span class="reference-accessdate">. Retrieved <span class="nowrap">2012-09-05</span></span>.</cite></span>
</li>
<li id="cite_note-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-10">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20130501030013/http://www54.sap.com/pc/tech/database/software/sybase-sql-anywhere/index.html">"SAP Sybase SQL Anywhere"</a>. <i>SAP Sybase Products</i>. SAP Sybase. Archived from <a rel="nofollow" class="external text" href="http://www54.sap.com/pc/tech/database/software/sybase-sql-anywhere/index.html">the original</a> on 2013-05-01<span class="reference-accessdate">. Retrieved <span class="nowrap">2013-05-02</span></span>.</cite></span>
</li>
<li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text"><cite class="citation web cs1"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20130504025213/http://www54.sap.com/pc/tech/database/software/sybase-iq-big-data-management/index.html">"SAP Sybase IQ"</a>. <i>SAP Sybase Products</i>. SAP Sybase. Archived from <a rel="nofollow" class="external text" href="http://www54.sap.com/pc/tech/database/software/sybase-iq-big-data-management/index.html">the original</a> on 2013-05-04<span class="reference-accessdate">. Retrieved <span class="nowrap">2013-05-02</span></span>.</cite></span>
</li>
</ol></div>
<div class="mw-heading mw-heading2"><h2 id="External_links">External links</h2></div>
<ul><li><a rel="nofollow" class="external text" href="http://infolab.stanford.edu/%7Eullman/fcdb/oracle/or-proc.html">Introduction to Pro*C Embedded SQL</a></li>
<li><a rel="nofollow" class="external text" href="http://www.oreillynet.com/pub/a/databases/2006/12/07/embedded-sql-with-pro-c.html">Embedded SQL with Pro*C</a></li>
<li><a rel="nofollow" class="external text" href="https://docs.oracle.com/cd/B10501_01/appdev.920/a58231/ch2.htm">SQL*Module for Ada Programmer's Guide, Release 8.0</a></li>
<li><a rel="nofollow" class="external text" href="https://www.postgresql.org/docs/current/ecpg.html">ECPG, PostgreSQL Documentation</a></li>
<li><a rel="nofollow" class="external text" href="https://www.ibm.com/support/knowledgecenter/SSGU8G_14.1.0/com.ibm.esqlc.doc/esqlc.html">ESQL/C, Informix Documentation</a>'</li>
<li><a rel="nofollow" class="external text" href="https://developer.mimer.com/article/embedded-sql-in-c/">Embedded SQL in C, Mimer SQL Developer</a></li></ul></div><!--htdig_noindex--><div><div class="zim-footer">
This article is issued from <a class="external text" title="Last edited on 2024-11-19" href="https://en.wikipedia.org/wiki/?title=Embedded_SQL&oldid=1258408348">Wikipedia</a>. The text is available under <a class="external text" href="https://creativecommons.org/licenses/by-sa/4.0/deed.en">Creative Commons Attribution-Share Alike 4.0</a> unless otherwise noted. Additional terms may apply for the media files.
</div>
</div><!--/htdig_noindex--></div>
</div>
</main>
</div>
</div>
</div>
</body></html>